Sometimes, because of project development, some tables in the SQLServer2005 must be synchronized to the Oracle database, which can be read by other systems. Data synchronization between different database types can be implemented using linked
1 Introduction to null valuesNULL is a unique data type in the database. If a column in a record is NULL, the value of this column is unknown and uncertain. Since it is unknown, there are several possibilities. Therefore, NULL is not a definite
In the database, a null value is used to indicate that the actual value is unknown or meaningless. In a table, if a column in a row has no value, it is called NULL ). A null value can be returned for any data type column as long as the non-NULL or
Oracle in the database, null values are used to indicate a situation where the actual value is unknown or meaningless. In a table, if a column in a row has no value, it is called a null value (NULL). Columns of any data type can have null values if
When the string is empty, it is judged by where null is used.
Example:
CREATE TABLE Test(Stuno Number (Ten) primary key,Stuname VARCHAR2 (50))INSERT into Test (Stuno) VALUES (10)INSERT into Test (stuno,stuname) VALUES (11, ')
SELECT * FROM test
---DQL: Data query statementsThe---Select statement must contain at least two words, namely the Select and from words.---the SELECT clause to specify the field to query.---the table that the FROM clause uses to customize the data source. The--select
In Oracle, a keyword is NULL, indicating that a value is unknown and uncertain. Since it is unknown, there are several possibilities. Therefore, NULL is not a definite
In Oracle, a keyword is NULL, indicating that a value is unknown and uncertain.
The introduction of 1null value NULL is a unique data type in the database. When a column in a record is NULL, the value of this column is unknown and uncertain. Since it is unknown, there are several possibilities. Therefore, NULL is not a definite
Some people have summarized the concept of Null value in the database, which is more refined. The excerpt is as follows:
Null is a unique data type in the database. If a column in a record is Null, the value of this column is unknown and uncertain.
In Oracle, a keyword is NULL, indicating that a value is unknown and uncertain. Since it is unknown, there are several possibilities. Therefore, NULL is not a definite value. Let's take a look at two examples:Example 1:
Declare
V_b1 boolean: = null;
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.